home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
GL
/
buttonfly
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
620b
|
37 lines
#!smake
include $(ROOT)/usr/include/make/commondefs
#
# This makefile creates the buttonfly program
#
# Libraries to link with to get the GL and X11 libraries.
TARGETS = buttonfly
LLDLIBS = ../libdemo/libdemo.a -lgl -lX11 -limage -lgutil
LCINCS = -I../libdemo
CVERSION = -cckr
CFILES = buttonfly.c lexer.c textmap.c
YFILES = parser.y
LDIRT = y.tab.h Times-Italic.bw
HFILES = kurtfont.h buttonfly.h data.h textmap.h
all default: $(TARGETS)
include $(COMMONRULES)
depend incdepend fluff: y.tab.h
${TARGETS}: ${OBJECTS}
${CCF} ${OBJECTS} $(LDFLAGS) -o $@
$(OBJECTS): y.tab.h
y.tab.h:
$(YACCF) -d $(YFILES)